home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / alib / readeclock.a < prev    next >
Text File  |  1994-02-01  |  422b  |  24 lines

  1.  
  2.         ;   dummy ReadEClock() call.  The profiling subsystem
  3.         ;   references this symbol though it only actually calls it
  4.         ;   under 2.0.    Under 1.3, however, it must still exist
  5.         ;   for the link to suceed.
  6.  
  7.         section text,code
  8.  
  9.         xdef    _ReadEClock
  10.         xdef    @ReadEClock
  11.         xref    _DOSBase
  12.  
  13. _ReadEClock:
  14.         move.l    8(sp),A0
  15. @ReadEClock:
  16.         move.l    A6,-(sp)
  17.         move.l    _DOSBase(A4),A6
  18.         jsr    $FFFFFFC4(A6)
  19.         move.l    (sp)+,A6
  20.         rts
  21.  
  22.         END
  23.  
  24.